home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / sos3-2.lha / src / cfe / cfe_err.h < prev    next >
C/C++ Source or Header  |  1992-01-23  |  2KB  |  51 lines

  1. /* --------------------------------------------------------------------------
  2.  * Copyright 1992 by Forschungszentrum Informatik (FZI)
  3.  *
  4.  * You can use and distribute this software under the terms of the licence
  5.  * you should have received along with this program.
  6.  * If not or if you want additional information, write to
  7.  * Forschungszentrum Informatik, "STONE", Haid-und-Neu-Strasse 10-14,
  8.  * D-7500 Karlsruhe 1, Germany.
  9.  * --------------------------------------------------------------------------
  10.  */
  11. #ifndef ERRCFEH
  12. #define ERRCFEH 1
  13.  
  14. #include "err.h"
  15.  
  16. extern const err_msg err_CFE_AMBIGUOUS_GEN_PARAMS;
  17. extern const err_msg err_CFE_AMBIGUOUS_METHODS;
  18. extern const err_msg err_CFE_ASSIGN_WITHOUT_EQUAL;
  19. extern const err_msg err_CFE_CLASS_EXPECTED;
  20. extern const err_msg err_CFE_EQUAL_WITHOUT_HASH;
  21. extern const err_msg err_CFE_FULL_GENERIC;
  22. extern const err_msg err_CFE_GEN_PARAM_MISMATCH;
  23. extern const err_msg err_CFE_GENERIC_TYPE_EXPECTED;
  24. extern const err_msg err_CFE_INTERNAL;
  25. extern const err_msg err_CFE_INVALID_EXT_SIZE;
  26. extern const err_msg err_CFE_INVALID_IMPORT;
  27. extern const err_msg err_CFE_INVALID_LOCAL_METHOD;
  28. extern const err_msg err_CFE_INVALID_OVERLOADING;
  29. extern const err_msg err_CFE_INVALID_REDEFINITION;
  30. extern const err_msg err_CFE_LEXICAL_ERROR;
  31. extern const err_msg err_CFE_MULTIPLE_TYPE_DECL;
  32. extern const err_msg err_CFE_NO_FILE;
  33. extern const err_msg err_CFE_NO_GENERIC_TYPE;
  34. extern const err_msg err_CFE_NO_KERNEL;
  35. extern const err_msg err_CFE_NOT_DECLARED;
  36. extern const err_msg err_CFE_RESERVED_SCHEMA_NAME;
  37. extern const err_msg err_CFE_SCRAMBLED_INSTANTIATION;
  38. extern const err_msg err_CFE_TOO_MANY_LITERALS;
  39. extern const err_msg err_CFE_UNDECL_CLASS;
  40. extern const err_msg err_CFE_UNKNOWN_TYPE;
  41. extern const err_msg err_CFE_USAGE;
  42.  
  43. extern const err_msg err_CFE_NO_ABSTRACT_FUNCS;
  44. extern const err_msg err_CFE_NO_DEFINITE_FUNCS;
  45. extern const err_msg err_CFE_NO_LOCAL_FUNCS;
  46. extern const err_msg err_CFE_NO_VALUE_FUNCS;
  47. extern const err_msg err_CFE_NO_DEFINITE_COMPS;
  48. extern const err_msg err_CFE_NO_STATIC_COMPS;
  49. extern const err_msg err_CFE_NO_VALUE_COMPS;
  50. #endif
  51.